home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 2 / Amiga Tools 2.iso / mui / mui-tools / multiuser / src / support / locale.h < prev    next >
C/C++ Source or Header  |  1995-03-09  |  1KB  |  26 lines

  1. /************************************************************
  2. * MultiUser - MultiUser Task/File Support System                *
  3. * ---------------------------------------------------------    *
  4. * localized strings for    support commands                            *
  5. * ---------------------------------------------------------    *
  6. * © Copyright 1993-1994 Geert Uytterhoeven                        *
  7. * All Rights Reserved.                                                    *
  8. ************************************************************/
  9.  
  10. #include <exec/types.h>
  11. #include <libraries/locale.h>
  12.  
  13. #define CATCOMP_NUMBERS
  14. #define CATCOMP_STRINGS
  15. #include "musupport_locale.h"
  16.  
  17. extern void _OpenLoc(struct ExecBase *SysBase,struct LocaleInfo *li);
  18. extern void _CloseLoc(struct ExecBase *SysBase,struct LocaleInfo *li);
  19. extern STRPTR _GetLocS(struct ExecBase *SysBase,struct LocaleInfo *li,LONG id,STRPTR defstr);
  20. extern STRPTR _GetLocStr(struct ExecBase *SysBase,LONG id,STRPTR defstr);
  21.  
  22. #define OpenLoc(li) _OpenLoc(SysBase,li)
  23. #define CloseLoc(li) _CloseLoc(SysBase,li)
  24. #define GetLocS(li,x) _GetLocS(SysBase,li,x,x ## _STR)
  25. #define GetLocStr(x) _GetLocStr(SysBase,x,x ## _STR)
  26.